Skip to content

Instantly share code, notes, and snippets.

@AlvinThorn008
AlvinThorn008 / commands.d.ts
Last active September 16, 2026 08:26
Minecraft Bedrock WebSockets API command responses.
interface WithStatusMessage {
statusMessage: string
}
interface AlwaysDay {}
interface Clear {}
interface Clone extends WithStatusMessage {
count: number

Design Thinking

X β†’ Graph β†’ Effect<A, E, R>
β”‚              β”‚   β”‚  β”‚  β”‚
β”‚              β”‚   β”‚  β”‚  └─ what each node needs     (Β§5)
β”‚              β”‚   β”‚  └──── where the graph breaks   (Β§4)
β”‚              β”‚   └─────── what flows through nodes  (Β§2)
β”‚              β”‚
β”‚ └─ nodes = functions, edges = data flow

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.

@kmvan
kmvan / google-chrome-apt-install.md
Created May 19, 2025 08:36 — forked from kJAHsin/google-chrome-apt-install.md
Install Google Chrome in Ubuntu Linux with apt

Installing Google Chrome via APT

Note: This is an updated installation method for Google Chrome, as the previous apt-get approach has been deprecated. Note: sh file is attached.

1. Set Up the Google Signing Key and Repository

Add Google’s public signing key and set up the APT repository for Google Chrome:

curl -fsSL https://dl.google.com/linux/linux_signing_key.pub | sudo gpg --dearmor -o /usr/share/keyrings/google-chrome.gpg
@Morpheus0x
Morpheus0x / claude-code-2.1.273-auto-attach-fix.md
Last active September 16, 2026 08:20
Claude Code Extension: Fix Auto-Attach (Version 2.1.273+)

Claude Code Extension: Fix Auto-Attach (Version 2.1.273+)

This is the latest fix for the stupid, annoying file attachment "feature" in claude code. I tested if it only is a visual fix by asking claude for the important information inside the open file in vs code. The following is the readme and python script for the fix (created by claude code, using caveman plugin).

patch.py β€” stop Claude Code VS Code extension auto-attaching the open file

Minimal patcher. Verified on anthropic.claude-code-2.1.273.

What it does

@sibaram-sahu
sibaram-sahu / pornsite-list.txt
Created August 12, 2017 13:11
List or porn site list for block in the host file.
127.0.0.1 http://www.hqhole.com
127.0.0.1 http://www.hdsexdino.com
127.0.0.1 http://pornbigvideo.com/
127.0.0.1 http://www.sweetshow.com
127.0.0.1 http://mylust.com/
127.0.0.1 https://www.sleazyneasy.com
127.0.0.1 http://www.sexpulse.tv
127.0.0.1 http://www.sexmole.com
127.0.0.1 www.spankbang.com/
127.0.0.1 http://spankbang.com/
@rxaviers
rxaviers / gist:7360908
Last active September 16, 2026 08:09
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: πŸ˜„ :smile: πŸ˜† :laughing:
😊 :blush: πŸ˜ƒ :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
πŸ˜† :satisfied: 😁 :grin: πŸ˜‰ :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: πŸ˜€ :grinning:
πŸ˜— :kissing: πŸ˜™ :kissing_smiling_eyes: πŸ˜› :stuck_out_tongue:
@jlblancoc
jlblancoc / README.md
Last active September 16, 2026 08:08
Install Azure Kinect DK on Ubuntu 22.04 or newer

Install lib4adev driver library

The Microsoft Kinect for Azure (k4a) is only supported officially for Ubuntu 18.04.

Here are instructions to install its library in a more recent OS:

# Download these two .deb files: 
wget https://packages.microsoft.com/ubuntu/18.04/prod/pool/main/libk/libk4a1.4-dev/libk4a1.4-dev_1.4.1_amd64.deb
wget https://packages.microsoft.com/ubuntu/18.04/prod/pool/main/libk/libk4a1.4/libk4a1.4_1.4.1_amd64.deb
@bapaeconwon2986
bapaeconwon2986 / CLO Standalone Free Download.rst
Created June 28, 2026 05:28
CLO Standalone Crack 2026

CLO Standalone

The CLO Standalone program is a software application used for designing and simulating garments in a digital environment. It allows users to create 3D models of clothing from 2D patterns. The program can simulate fabric properties and garment behavior, showing how materials drape and move. Users can adjust patterns and fabrics and see the changes in real time. CLO Standalone supports importing and exporting various file formats for patterns and 3D models. It provides tools for measuring,

@april
april / find-all-electron-versions.sh
Last active September 16, 2026 08:04
find all apps using Electron and their versions, on macOS systems
# latest supported electron version as of october 2024
LATEST_SUPPORTED_VERSION=30
RED='\033[0;31m'
GREEN='\033[0;32m'
NC='\033[0m' # no color
mdfind "kind:app" 2>/dev/null | sort -u | while read app;
do
filename="$app/Contents/Frameworks/Electron Framework.framework/Electron Framework"
if [[ -f $filename ]]; then